home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The CICA Windows Explosion!
/
The CICA Windows Explosion! - Disc 2.iso
/
patches
/
qw3r7.zip
/
QW3R7.BAT
< prev
next >
Wrap
DOS Batch File
|
1993-12-23
|
2KB
|
60 lines
@echo off
REM Check for Quicken in the current directory
if exist QW.EXE goto PATCH
REM Check that a directory was specified
if (%1) == () goto NEEDDIR
REM Check in the current directory of the specified drive
REM This also works if the direcory ends with a \
if exist %1QW.EXE goto DRVONLY
REM Check for Quicken in the specified directory
if exist %1\QW.EXE goto PATCH
goto NOTFOUND
REM Apply the Patch file to Quicken. It will
REM automatically detect the current version of Quicken
:PATCH
patch %1 qw3r7.rtp
goto EXIT
:DRVONLY
patch %1. qw3r7.rtp
goto EXIT
:NEEDDIR
echo --------------------------------------------------------
echo - Please include the name of the directory that contains
echo - Quicken 3 for Windows. For example, you should type:
echo -
echo - QW3R7 C:\QUICKENW
echo -
echo - For more information, TYPE the README file.
echo --------------------------------------------------------
goto EXIT
:NOTFOUND
echo --------------------------------------------------------
echo - Quicken 3 for Windows was not found in the directory:
echo -
echo - %1
echo -
echo - Please check that you are correctly typing the name
echo - of the directory in which you installed Quicken.
echo - For example, you should type:
echo -
echo - QW3R7 C:\QUICKENW
echo -
echo - For more information, TYPE the README file.
echo --------------------------------------------------------
goto EXIT
:EXIT